home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Leser 15 / Amiga Plus Leser CD 15.iso / Tools / Development / MosaicSRC / src / NewGroup.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-03-13  |  761 b   |  29 lines

  1. // NewGroup.h
  2.  
  3. #ifndef NEWGROUP_H
  4. #define NEWGROUP_H
  5.  
  6. #define MUIA_NewGroup_Width            (TAG_USER+1+0x8000000) //I--
  7. #define MUIA_NewGroup_Height        (TAG_USER+2+0x8000000) //I--
  8. #define MUIA_NewGroup_Left            (TAG_USER+3+0x8000000) //I-- -> IS-
  9. #define MUIA_NewGroup_Top            (TAG_USER+4+0x8000000) //I-- -> IS-
  10. #define MUIA_NewGroup_ChildWidth    (TAG_USER+5+0x8000000) //I--
  11. #define MUIA_NewGroup_ChildHeight    (TAG_USER+6+0x8000000) //I--
  12. #define MUIA_NewGroup_FixWidth        (TAG_USER+7+0x8000000) //I--
  13. #define MUIA_NewGroup_FixHeight        (TAG_USER+8+0x8000000) //I--
  14.  
  15. #define MUIM_NewGroup_Layout        (TAG_USER+9+0x8000000) //I-- /* void */
  16.  
  17. struct MUIP_PlaceObject
  18. {
  19.     long id;
  20.     long x,y;
  21.     long width,height;
  22. };
  23.  
  24. #define MUIM_PlaceObject 0x8042845B
  25.  
  26. void fail(APTR,char *);
  27.  
  28. #endif
  29.